home *** CD-ROM | disk | FTP | other *** search
/ 3D World 48 / 3D World CD Interactive Issue 48 (3DWi48) (2003).iso / mac / contents.dir / 00049_Script_roller2 < prev    next >
Text File  |  2003-12-22  |  703b  |  33 lines

  1. on roller2
  2.   
  3.   if rollOver (7) then
  4.     set the visible of sprite 4 = false
  5.     set the visible of sprite 5 = true 
  6.     set the visible of sprite 6 = true     
  7.      
  8.     
  9.   else if rollOver (8) then
  10.     set the visible of sprite 4 = true
  11.     set the visible of sprite 5 = false
  12.     set the visible of sprite 6 = true     
  13.  
  14.     
  15.   else if rollOver (9) then
  16.     set the visible of sprite 4 = true
  17.     set the visible of sprite 5 = true
  18.     set the visible of sprite 6 = false     
  19.  
  20.     
  21.   
  22.     
  23.   else if rollOver () then
  24.     set the visible of sprite 4 = true
  25.     set the visible of sprite 5 = true
  26.     set the visible of sprite 6 = true
  27.  
  28.     
  29.     
  30.     
  31.   end if
  32.   
  33. end